home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / DATABASE / LISTS641.ZIP;1 / INSTALL.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-01-20  |  1.8 KB  |  66 lines

  1. echo off
  2. cls
  3. echo 
  4. echo                    LIST MANAGER VERSION 6.41
  5. echo                     HARD DISK INSTALLATION 
  6. echo 
  7. if "%1==" goto Helpinst
  8. echo    You can copy the LISTS MANAGER to your hard disk  by following
  9. echo    this installation  procedure.  The program and data files will   
  10. echo    be installed in a directory of  the drive you entered  labeled
  11. echo    "%1:\LISTS" from the origional files on this distribution disk.
  12. echo 
  13. echo 
  14. echo    The LISTS MANAGER will be installed on drive %1:
  15. echo 
  16. ask     Is all correct to begin installing the Lists Manager? (Y/N) 
  17. if ERRORLEVEL 1 goto START
  18. goto END
  19. :START
  20. if exist c:\config.sys goto BEGIN
  21. copy a:\config.smp c:\config.sys
  22. :BEGIN
  23. if exist %1:\LISTS\LISTS.EXE goto ErrExist
  24. if exist %1:\LISTS\LIST.dbf goto ErrExist
  25. echo 
  26. echo    Copying files to drive %1:\LISTS        
  27. echo 
  28. copy LISTS.bax %1:\LISTS.bat
  29. md %1:\lists
  30. copy LISTS.exe %1:\lists\LISTS.exe
  31. copy LIST.dbb %1:\lists\LIST.dbf
  32. copy LISTCAL.dbb %1:\lists\LISTCAL.dbf
  33. copy LISTKEY.dbb %1:\lists\LISTKEY.dbf
  34. copy LISTLET.dbb %1:\lists\LISTLET.dbf
  35. copy LISTDRV.dbb %1:\lists\LISTDRV.dbf
  36. copy TRAN.dbb %1:\lists\TRAN.dbf
  37. copy *.mem %1:\lists
  38. echo 
  39. echo 
  40. echo    The LISTS MANAGER has been successfully installed on %1:\LISTS
  41. goto END
  42. :Helpinst
  43. echo 
  44. echo 
  45. echo              Install is aborted!!
  46. echo 
  47. echo    You entered the command incorrectly.   The correct syntax is:
  48. echo 
  49. echo        " INSTALL C "     To install the LISTS MANAGER on drive C:
  50. echo 
  51. echo    Use the destination drive letter appropriate for your install. 
  52. goto END
  53. :ErrExist
  54. echo 
  55. echo 
  56. echo    Install is aborted!!
  57. echo 
  58. echo    LISTS MANAGER files already exists on drive %1:\LISTS
  59. echo    please check before re-running install
  60. goto END
  61. :END
  62. echo 
  63. echo 
  64. pause
  65. cls
  66.